ID Verification
GET : http://<base_url>/digipay/v3/ekyc/id_verifications/{id}
Get the user detail for which the Ekyc is completed
PATH PARAMS:-
Parameter | Type | Description | Value |
---|---|---|---|
id | String | Primary key of id_verification which is received in initiate_verification_process API. | 1234 |
HEADERS:-
Parameter | Type | Description | Value |
---|---|---|---|
Authorization | String | It is a combination of type and token to authenticate user for the given token | Token duik7309njdlkhdauhknksadhjkas986876sd873j |
CompanyID | String | Company_id is a unique primary id, that is represent company detail | 76bc712200ca444fa334f9e55e5fd7a8 |
Response:-
Response 200(OK)
{
"success": 1,
"error": [],
"data": {
"id_verifications": {
"is_active": true,
"created_by": "65f4d2509bfe450fa8815a559697bc47",
"created_date": 1698643150,
"updated_by": null,
"updated_date": 1698643150,
"id": "d4e8890a3339449ba72e769ca6ac01cc",
"reference_number": "1698643150",
"user_id": "5465dsf1213235dfsf",
"full_name": "ABC",
"selfie_image": null,
"birth_date": 54154546,
"first_name": null,
"middle_name": "jds",
"last_name": "fdldff",
"age": 16,
"nationality": "dfsdfs",
"email": "email.com",
"verification_mode": "dff",
"allow_na": true,
"callback_url": "dfskljdfs",
"redirect_url": "dfskjdf",
"verification_type": null,
"offline_allowed": "true",
"online_allowed": "true",
"status": 1,
"reject_reason": null,
"device_info": null
}
}
}
Response 400(BAD REQUEST)
{
"success": 0,
"error"": [1],
"data": {
"message": "BAD_REQUEST",
}
}
RESPONSES :-
Status Code | Description |
---|---|
200 | OK |
400 | Bad Request |
404 | Not Found |
500 | Internal Server Error |